:root {
  --blue:#021bfa;
  --gold:#dbb60e;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Raleway',sans-serif;
  background:var(--blue);
  color:#fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* NAV */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{width:80px;}

.logo span{
  font-weight:800;
  color:#05a0ee;
}

.links{
  display:flex;
  gap:25px;
}

.links a{
  color:#333;
  text-decoration:none;
  font-weight:600;
}

/* DROPDOWN */

.dropdown{
  position:relative;
  cursor:pointer;
}

.dropdown-menu{
  position:absolute;
  top:120%;
  left:0;
  background:#fff;
  width:220px;
  border-radius:10px;
  box-shadow:0 8px 25px rgba(0,0,0,.2);
  opacity:0;
  visibility:hidden;
  transition:.3s;
}

.dropdown-menu a{
  display:block;
  padding:12px;
  color:#333;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
}

/* HAMBURGER */

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor: pointer;
}

.hamburger span{
  width:25px;
  height:3px;
  background:#000;
  cursor: pointer;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:60px;
  background:
  linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
  url("../images/background-img.jpg");
  background-size:cover;
}

.hero h1{font-size:64px;}

.btn{
  display:inline-block;
  margin-top:20px;
  background:#6fc7f3;
  padding:14px 30px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
}

/* SECTIONS */

section{padding:80px 60px;}

/* =========================
   ABOUT SECTION
========================= */

.about {
  background: #ffffff;
  color: #000;
}

.about-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  align-items: center;
}


/* LEFT SIDE */

.about-content {
  padding-right: 20px;
}

.about-tag {
  display: inline-block;

  background: rgba(219,182,14,0.15);
  color: var(--gold);

  padding: 6px 14px;
  border-radius: 20px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-lead {
  font-size: 18px;
  font-weight: 600;
  color: #333;

  margin-bottom: 20px;
  line-height: 1.6;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}


/* BULLET POINTS */

.about-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.about-points li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #222;
}


/* BUTTON */

.about-btn {
  display: inline-block;

  margin-top: 15px;

  background: linear-gradient(135deg, var(--gold), #f1d85b);

  color: #000;

  padding: 14px 32px;
  border-radius: 30px;

  text-decoration: none;
  font-weight: 700;

  box-shadow: 0 8px 25px rgba(0,0,0,0.2);

  transition: 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}


/* RIGHT SIDE IMAGE */

.about-image-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}


/* IMAGE OVERLAY LABEL */

.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;

  padding: 15px 20px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.1)
  );

  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-lead {
    font-size: 17px;
  }

}


@media (max-width: 600px) {

  .about-content h2 {
    font-size: 28px;
  }

  .about-btn {
    width: 100%;
    text-align: center;
  }

}


/* ================= SERVICES ================= */

.services {
  padding: 90px 20px;
  background: #f5f7ff;
}

.services-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111827;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

.service-card a {
  font-weight: 600;
  color: var(--brand-gold);
  text-decoration: none;
  transition: 0.3s;
}

.service-card a:hover {
  color: #000;
}

/* Tablets */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 600px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    text-align: center;
  }

}

/* ================= VIDEOS ================= */

.videos {
  padding: 90px 20px;
  background: #ffffff;
}

.videos-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #555;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.video-card {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  transition: 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet */

@media (max-width: 1100px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 600px) {

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    height: 220px;
  }

}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 90px 20px;
  background: #000;
  color: #fff;
}

.testimonials-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
  color: #ccc;
  font-size: 18px;
}

/* Slider Layout */

.testimonial-slider {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

/* Card */

.testimonial-card {
  min-width: 320px;
  background: #fff;
  color: #000;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card span {
  font-weight: 700;
  font-size: 14px;
}

/* Stars */

.stars {
  color: var(--brand-gold);
  font-size: 20px;
  margin-bottom: 12px;
}

/* Buttons */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand-gold);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  color: #000;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  transition: 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: #fff;
}

.prev {
  left: -10px;
}

.next {
  right: -10px;
}

/* Tablet */

@media (max-width: 900px) {

  .testimonial-card {
    min-width: 280px;
  }

}

/* Mobile */

@media (max-width: 600px) {

  .testimonial-card {
    min-width: 90%;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

}

/* ================= CONTACT + FOOTER ================= */

.contact-footer {
  position: relative;
  background:
    url("../images/heroimage2.jpg") center/cover no-repeat;
  color: #ffffff;
}

/* Dark Overlay */

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(70, 67, 67, 0.75);
}

/* Main Container */

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 90px 25px 60px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* BRAND */

.footer-brand img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 25px;
}

/* SOCIAL */

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: var(--brand-gold);
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* CONTACT */

.footer-contact h3,
.footer-links h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--brand-gold);
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 15px;
}

.syntax-brand{
  color: orange;
  font-weight: 600; /* optional */
}


/* CTA Button */

.contact-btn {
  display: inline-block;
  margin-top: 15px;

  background: var(--brand-gold);
  color: #000;
  text-decoration: none;

  padding: 12px 26px;
  border-radius: 25px;
  font-weight: 700;

  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #fff;
}

/* LINKS */

.footer-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--brand-gold);
  padding-left: 6px;
}

/* BOTTOM BAR */

.footer-bottom {
  position: relative;
  z-index: 2;

  border-top: 1px solid rgba(255,255,255,.1);

  padding: 25px;
  text-align: center;

  font-size: 14px;
  color: #aaa;
}

.footer-bottom span {
  color: var(--brand-gold);
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

/* Tablet */

@media (max-width: 900px) {

  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-column: span 2;
    text-align: center;
  }

}

/* Mobile */

@media (max-width: 600px) {

  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin: auto;
  }

  .social-links {
    justify-content: center;
  }

}

/* MOBILE */

@media(max-width:900px){

  .hamburger{display:flex;}

  .links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:20px;
    display:none;
  }

  .links.active{display:flex;}

  .about-wrapper,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .services-grid,
  .testimonial-grid,
  .videos{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  section{padding:60px 25px;}

  .hero h1{font-size:42px;}

  .services-grid,
  .testimonial-grid,
  .videos{
    grid-template-columns:1fr;
  }

}
